home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 API Bible / Windows 95 API Bible 3 Disc Set.iso / Win32 API Bible Book 1 of 3.iso / chapter8 / chkdlgbt.c next >
C/C++ Source or Header  |  1996-01-28  |  6KB  |  217 lines

  1.  
  2. #include <windows.h>  
  3. #include "ChkDlgBt.h" 
  4.  
  5.  
  6. #if defined (WIN32)
  7.     #define IS_WIN32 TRUE
  8. #else
  9.     #define IS_WIN32 FALSE
  10. #endif
  11.  
  12. #define IS_NT      IS_WIN32 && (BOOL)(GetVersion() < 0x80000000)
  13. #define IS_WIN32S  IS_WIN32 && (BOOL)(!(IS_NT) && (LOBYTE(LOWORD(GetVersion()))<4))
  14. #define IS_WIN95   (BOOL)(!(IS_NT) && !(IS_WIN32S)) && IS_WIN32
  15.  
  16. HINSTANCE hInst;   // current instance
  17.  
  18. LPCTSTR lpszAppName  = "MyApp";
  19. LPCTSTR lpszTitle    = "My Application"; 
  20.  
  21. BOOL RegisterWin95( CONST WNDCLASS* lpwc );
  22.  
  23. int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
  24.                       LPTSTR lpCmdLine, int nCmdShow)
  25. {
  26.    MSG      msg;
  27.    HWND     hWnd; 
  28.    WNDCLASS wc;
  29.  
  30.    // Register the main application window class.
  31.    //............................................
  32.    wc.style         = CS_HREDRAW | CS_VREDRAW;
  33.    wc.lpfnWndProc   = (WNDPROC)WndProc;       
  34.    wc.cbClsExtra    = 0;                      
  35.    wc.cbWndExtra    = 0;                      
  36.    wc.hInstance     = hInstance;              
  37.    wc.hIcon         = LoadIcon( hInstance, lpszAppName ); 
  38.    wc.hCursor       = LoadCursor(NULL, IDC_ARROW);
  39.    wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
  40.    wc.lpszMenuName  = lpszAppName;              
  41.    wc.lpszClassName = lpszAppName;              
  42.  
  43.    if ( IS_WIN95 )
  44.    {
  45.       if ( !RegisterWin95( &wc ) )
  46.          return( FALSE );
  47.    }
  48.    else if ( !RegisterClass( &wc ) )
  49.       return( FALSE );
  50.  
  51.    hInst = hInstance; 
  52.  
  53.    // Create the main application window.
  54.    //....................................
  55.    hWnd = CreateWindow( lpszAppName, 
  56.                         lpszTitle,    
  57.                         WS_OVERLAPPEDWINDOW, 
  58.                         CW_USEDEFAULT, 0, 
  59.                         CW_USEDEFAULT, 0,  
  60.                         NULL,              
  61.                         NULL,              
  62.                         hInstance,         
  63.                         NULL               
  64.                       );
  65.  
  66.    if ( !hWnd ) 
  67.       return( FALSE );
  68.  
  69.    ShowWindow( hWnd, nCmdShow ); 
  70.    UpdateWindow( hWnd );         
  71.  
  72.    while( GetMessage( &msg, NULL, 0, 0) )   
  73.    {
  74.       TranslateMessage( &msg ); 
  75.       DispatchMessage( &msg );  
  76.    }
  77.  
  78.    return( msg.wParam ); 
  79. }
  80.  
  81.  
  82. BOOL RegisterWin95( CONST WNDCLASS* lpwc )
  83. {
  84.    WNDCLASSEX wcex;
  85.  
  86.    wcex.style         = lpwc->style;
  87.    wcex.lpfnWndProc   = lpwc->lpfnWndProc;
  88.    wcex.cbClsExtra    = lpwc->cbClsExtra;
  89.    wcex.cbWndExtra    = lpwc->cbWndExtra;
  90.    wcex.hInstance     = lpwc->hInstance;
  91.    wcex.hIcon         = lpwc->hIcon;
  92.    wcex.hCursor       = lpwc->hCursor;
  93.    wcex.hbrBackground = lpwc->hbrBackground;
  94.    wcex.lpszMenuName  = lpwc->lpszMenuName;
  95.    wcex.lpszClassName = lpwc->lpszClassName;
  96.  
  97.    // Added elements for Windows 95.
  98.    //...............................
  99.    wcex.cbSize = sizeof(WNDCLASSEX);
  100.    wcex.hIconSm = LoadImage(wcex.hInstance, lpwc->lpszClassName, 
  101.                             IMAGE_ICON, 16, 16,
  102.                             LR_DEFAULTCOLOR );
  103.             
  104.    return RegisterClassEx( &wcex );
  105. }
  106.  
  107. BOOL bChecked = FALSE;
  108. BOOL bRadio1  = TRUE;
  109.  
  110.  
  111. LRESULT CALLBACK WndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
  112. {
  113.    switch( uMsg )
  114.    {
  115.       case WM_COMMAND :
  116.               switch( LOWORD( wParam ) )
  117.               {
  118.                  case IDM_TEST :
  119.                         DialogBox( hInst, "TestDialog", hWnd,
  120.                                   (DLGPROC)TestDlgProc );
  121.                         break;
  122.  
  123.                  case IDM_ABOUT :
  124.                         DialogBox( hInst, "AboutBox", hWnd, (DLGPROC)About );
  125.                         break;
  126.  
  127.                  case IDM_EXIT :
  128.                         DestroyWindow( hWnd );
  129.                         break;
  130.               }
  131.               break;
  132.       
  133.       case WM_DESTROY :
  134.               PostQuitMessage(0);
  135.               break;
  136.  
  137.       default :
  138.             return( DefWindowProc( hWnd, uMsg, wParam, lParam ) );
  139.    }
  140.  
  141.    return( 0L );
  142. }
  143.  
  144.  
  145. LRESULT CALLBACK TestDlgProc( HWND hDlg, UINT uMsg, 
  146.                               WPARAM wParam, LPARAM lParam )
  147. {
  148.    switch( uMsg )
  149.    {
  150.       // Initially set the check box
  151.       // and radio button states.
  152.       //............................
  153.       case WM_INITDIALOG :
  154.             CheckDlgButton( hDlg, IDC_CHECKBOX, bChecked ? MF_CHECKED :
  155.                                                            MF_UNCHECKED );
  156.             CheckRadioButton( hDlg, IDC_RADIO1, IDC_RADIO2, 
  157.                            bRadio1 ? IDC_RADIO1 : IDC_RADIO2 );
  158.             break;
  159.  
  160.       case WM_COMMAND :
  161.             switch( LOWORD( wParam ) )
  162.             {
  163.                case IDC_CHECKBOX :
  164.                       bChecked = !IsDlgButtonChecked( hDlg, IDC_CHECKBOX );
  165.                       CheckDlgButton( hDlg, IDC_CHECKBOX, 
  166.                                       bChecked ? MF_CHECKED : MF_UNCHECKED );
  167.                       break;
  168.  
  169.                case IDC_RADIO1 :
  170.                       bRadio1 = TRUE;
  171.                       CheckRadioButton( hDlg, IDC_RADIO1, IDC_RADIO2,
  172.                                                           IDC_RADIO1 );
  173.                       break;
  174.  
  175.                case IDC_RADIO2 :
  176.                       bRadio1 = FALSE;
  177.                       CheckRadioButton( hDlg, IDC_RADIO1, IDC_RADIO2,
  178.                                                           IDC_RADIO2 );
  179.                       break;
  180.  
  181.                case IDCANCEL : 
  182.                       EndDialog( hDlg, IDCANCEL );
  183.                       break;
  184.             }
  185.             break;
  186.  
  187.       default :
  188.             return( FALSE );
  189.    }
  190.  
  191.    return( TRUE );
  192. }
  193.  
  194.  
  195. LRESULT CALLBACK About( HWND hDlg,           
  196.                         UINT message,        
  197.                         WPARAM wParam,       
  198.                         LPARAM lParam)
  199. {
  200.    switch (message) 
  201.    {
  202.        case WM_INITDIALOG: 
  203.                return (TRUE);
  204.  
  205.        case WM_COMMAND:                              
  206.                if (   LOWORD(wParam) == IDOK         
  207.                    || LOWORD(wParam) == IDCANCEL)    
  208.                {
  209.                        EndDialog(hDlg, TRUE);        
  210.                        return (TRUE);
  211.                }
  212.                break;
  213.    }
  214.  
  215.    return (FALSE); 
  216. }
  217.